how to show a first item in a combobox in c# winforms

92

how to show a first item in a combobox in c# winforms -

var item = ChunkList.SingleOrDefault(x => x.UniqueId == ChunkID);
if (item != null)
    ChunkList.Remove(item);

Comments

Submit
0 Comments